home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7004.txt < prev    next >
Text File  |  1996-03-22  |  2KB  |  93 lines

  1. Sets the scale of the specified layer.
  2.  
  3. SetLScale(h:HANDLE;FACTOR:INTEGER);
  4.  
  5. Sets default wall width of file.
  6.  
  7. SetWallWidth(Width:REAL);
  8.  
  9. Sets file view center to (X,Y).
  10.  
  11. SetVCenter(X,Y:REAL);
  12.  
  13. Sets view zoom of file.
  14.  
  15. SetZoom(ZoomFactor:LONGINT);
  16.  
  17. Sets layers z values.
  18.  
  19. SetZVals(BaseZ,DeltaZ:REAL);
  20.  
  21. Sets symbol s to be active.
  22.  
  23. SetActSymbol (s : STRING);
  24.  
  25. Sets the current constrain mode.
  26.  
  27. SetConstrain(s : STRING);
  28.  
  29. Sets the current tool from the palette.
  30.  
  31. SetTool(theTool : INTEGER);
  32.  
  33. Sets one of the standard units.
  34.  
  35. Units(StandardUnit : INTEGER;  DisplayAccuracy : LONGINT);
  36.  
  37. Sets customized units.
  38.  
  39. SetUnits(Fraction, DisplayAccuracy : LONGINT;  Format : INTEGER; UnitsPerInch : REAL; UnitMark, SqrUnitMark : STRING);
  40.  
  41. Activates the snap options :
  42. TRUE = on
  43. FALSE = off
  44.  
  45. Snap(Grid, Object, Locus : BOOLEAN);
  46.  
  47. Sets the scale of the objects.
  48. 2 = 1/2 scale
  49. 4 = 1/4 scale
  50.  
  51. SetScale(ActualSize : REAL);
  52.  
  53. Moves the origin to the point (X, Y).
  54.  
  55. SetOrigin(X, Y : REAL);
  56.  
  57. Redraws screen.
  58.  
  59. Redraw;
  60.  
  61. Sets the smallest mouse increment.
  62.  
  63. PenGrid(Distance : REAL);
  64.  
  65. Creates a new marker style for the drawing.
  66.  
  67. Marker(Style:INTEGER;Size:REAL;Angle:INTEGER);
  68.  
  69. Sets the distance between the gridlines on the screen.
  70.  
  71. GridLines(Distance : REAL);
  72.  
  73. Sets the overall drawing sheet area of a MiniCad file
  74.  
  75. DrwSize(Rows, Columns : INTEGER);
  76.  
  77. Sets the distance between double lines.
  78.  
  79. DoubLines(Distance : REAL);
  80.  
  81. Must be called before using variable angles.
  82.  
  83. AngleVar;
  84.  
  85. Sets the point-designation method to relative.
  86.  
  87. Relative;
  88.  
  89. Sets the point-designation method to absolute.
  90.  
  91. Absolute;
  92.  
  93.